PowerTools SPREAD for Windows Forms 8.0J
ButtonDrawModes 列挙体


ボタン型とコンボボックス型のセルのボタンの表示方法を表します。
構文
'Declaration
 
Public Enum ButtonDrawModes 
   Inherits System.Enum
'使用法
 
Dim instance As ButtonDrawModes
public enum ButtonDrawModes : System.Enum 
メンバ
メンバ説明
Always[0]常にボタンを表示
AlwaysEditButtons[32] 編集セルのボタンを常に表示します。
AlwaysPrimaryButton[8]ボタン型セルのボタンを常に表示
AlwaysSecondaryButton[16]コンボボックス型セルのボタンを常に表示
CurrentCell[1]現在のセルのボタンのみを表示
CurrentColumn[2]現在の列のボタンのみを表示
CurrentRow[4]現在の行のボタンのみを表示
解説

ボタンの詳細については、「ボタン表示の制限」を参照してください。

ボタンを表示するスプレッドシート内の位置をより正確に限定するには、OR演算子(Visual Basicの場合は"Or"、C#の場合は"|")を使用して設定のサブセットを結合します。

プライマリボタンとはボタンセル型のボタンのことで、セル自体がボタンになります。セカンダリボタンとは、コンボボックス型セルのドロップダウンボタンやセル内のスピンボタンのような、セルに含まれる二次的なボタンのことです。

FarPoint.Win.Spread.FpSpread fpSpread1 = new FarPoint.Win.Spread.FpSpread();
FarPoint.Win.Spread.SheetView shv = new FarPoint.Win.Spread.SheetView();
DialogResult dlg;
fpSpread1.Location = new Point(10, 10);
fpSpread1.Height = 200;
fpSpread1.Width = 400;
Controls.Add(fpSpread1);
fpSpread1.Sheets.Add(shv);
fpSpread1.ActiveSheet.Cells[0, 0].CellType = new FarPoint.Win.Spread.CellType.ComboBoxCellType();
fpSpread1.ActiveSheet.Cells[1, 0].CellType = new FarPoint.Win.Spread.CellType.ComboBoxCellType();
fpSpread1.ActiveSheet.Cells[1, 2].CellType = new FarPoint.Win.Spread.CellType.ComboBoxCellType();
dlg = MessageBox.Show("Do you want to hide the button for the combo box in the third column??", "ButtonDrawMode", MessageBoxButtons.YesNo);
if (dlg == DialogResult.Yes)
{
     fpSpread1.ButtonDrawMode = FarPoint.Win.Spread.ButtonDrawModes.CurrentColumn;
}
Dim fpSpread1 As New FarPoint.Win.Spread.FpSpread()
Dim shv As New FarPoint.Win.Spread.SheetView()
Dim dlg As DialogResult
fpSpread1.Location = New Point(10, 10)
fpSpread1.Height = 200
fpSpread1.Width = 400
Controls.Add(fpSpread1)
fpSpread1.Sheets.Add(shv)
fpSpread1.ActiveSheet.Cells(0, 0).CellType = New FarPoint.Win.Spread.CellType.ComboBoxCellType()
fpSpread1.ActiveSheet.Cells(1, 0).CellType = New FarPoint.Win.Spread.CellType.ComboBoxCellType()
fpSpread1.ActiveSheet.Cells(1, 2).CellType = New FarPoint.Win.Spread.CellType.ComboBoxCellType()
dlg = MessageBox.Show("Do you want to hide the button for the combo box in the third column??", "ButtonDrawMode", MessageBoxButtons.YesNo)
If dlg = DialogResult.Yes Then
     fpSpread1.ButtonDrawMode = FarPoint.Win.Spread.ButtonDrawModes.CurrentColumn
End If
継承階層

System.Object
   System.ValueType
      System.Enum
         FarPoint.Win.Spread.ButtonDrawModes

参照

FarPoint.Win.Spread 名前空間
ButtonDrawMode プロパティ (FpSpread クラス)

開発者ガイド

ボタン表示の制限

 

 


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