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

この SideButtonBase がグラデーションかどうかを示す値を取得または設定します。
構文
'宣言
 
Public Property Enabled As Boolean
public bool Enabled {get; set;}

プロパティ値

bool値。表示される場合はtrue、それ以外の場合はfalse

デフォルト値はtrueです。
解説
Enabled プロパティを使用すると、コントロールを実行時に有効または無効にできます。たとえば、アプリケーションの現在の状態には適用されないコントロールを無効にできます。また、コントロールを無効にしてその使用を制限することも可能です。たとえば、ボタンを無効にしてユーザーがクリックできないようにすることができます。無効なコントロールは選択できません。
使用例
次のサンプルコードは、Enabledプロパティを設定します。
GrapeCity.Win.Spread.InputMan.CellType.SideButtonInfo testbutton = new GrapeCity.Win.Spread.InputMan.CellType.SideButtonInfo();
testbutton.BackColor = Color.Aquamarine;
testbutton.ForeColor = Color.DarkMagenta;
testbutton.UseVisualStyleBackColor = false;
testbutton.Enabled = true;
testbutton.Text = "1";

GrapeCity.Win.Spread.InputMan.CellType.GcDateTimeCellType dateCellType = new GrapeCity.Win.Spread.InputMan.CellType.GcDateTimeCellType();
dateCellType.SideButtons.Add(new GrapeCity.Win.Spread.InputMan.CellType.SideButtonInfo() { Text = "A" });
this.fpSpread1_Sheet1.Columns[0].CellType = dateCellType;

GrapeCity.Win.Spread.InputMan.CellType.GcTextBoxCellType textCellType = new GrapeCity.Win.Spread.InputMan.CellType.GcTextBoxCellType();
textCellType.SideButtons.Add(new GrapeCity.Win.Spread.InputMan.CellType.SideButtonInfo() { Text = "B" });
this.fpSpread1_Sheet1.Columns[1].CellType = textCellType;

GrapeCity.Win.Spread.InputMan.CellType.GcDateTimeCellType dateCellType2 = new GrapeCity.Win.Spread.InputMan.CellType.GcDateTimeCellType();
dateCellType2.SideButtons.Add(testbutton);
this.fpSpread1_Sheet1.Columns[2].CellType = dateCellType2;
Dim testbutton As New GrapeCity.Win.Spread.InputMan.CellType.SideButtonInfo()
testbutton.BackColor = Color.Aquamarine
testbutton.ForeColor = Color.DarkMagenta
testbutton.UseVisualStyleBackColor = False
testbutton.Enabled = True
testbutton.Text = "1"

Dim dateCellType As New GrapeCity.Win.Spread.InputMan.CellType.GcDateTimeCellType()
dateCellType.SideButtons.Add(New GrapeCity.Win.Spread.InputMan.CellType.SideButtonInfo() With {.Text = "A"})
fpSpread1_Sheet1.Columns(0).CellType = dateCellType

Dim textCellType = New GrapeCity.Win.Spread.InputMan.CellType.GcTextBoxCellType()
textCellType.SideButtons.Add(New GrapeCity.Win.Spread.InputMan.CellType.SideButtonInfo() With {.Text = "B"})
fpSpread1_Sheet1.Columns(1).CellType = textCellType

Dim dateCellType2 As New GrapeCity.Win.Spread.InputMan.CellType.GcDateTimeCellType()
dateCellType2.SideButtons.Add(testbutton)
fpSpread1_Sheet1.Columns(2).CellType = dateCellType2
参照

SideButtonBaseInfo クラス
SideButtonBaseInfo メンバ

 

 


© MESCIUS inc. All rights reserved.