FarPoint.Win アセンブリ > FarPoint.Win 名前空間 : DropDownOptions 列挙体 |
'Declaration Public Enum DropDownOptions Inherits System.Enum
'使用法 Dim instance As DropDownOptions
public enum DropDownOptions : System.Enum
メンバ | 説明 |
---|---|
Button | ボタン領域がクリックされたときはドロップダウンを表示し、セル領域がクリックされたときはドロップダウンしません。 |
ButtonAndText | セルまたはボタン領域がクリックされたとき、ドロップダウンリストを表示します。 |
Inherit | 3.0 の動作を維持します(デフォルト)。 |
None | セルまたはボタン領域がクリックされたとき、ドロップダウンしません。 |
Text | セル領域がクリックされたときはドロップダウンリストを表示し、ボタン領域がクリックされたときはリストをドロップダウンしません。 |
FarPoint.Win.Spread.CellType.ComboBoxCellType cmbocell = new FarPoint.Win.Spread.CellType.ComboBoxCellType(); cmbocell.Items = (new String[] { "January", "February", "March", "April", "May", "June" }); cmbocell.DropDownOptions = FarPoint.Win.DropDownOptions.ButtonAndText; fpSpread1.Sheets[0].Cells[0, 0].CellType = cmbocell;
Dim cmbocell As New FarPoint.Win.Spread.CellType.ComboBoxCellType() cmbocell.Items = (new String() {"January", "February", "March", "April", "May", "June"}) cmbocell.DropDownOptions = FarPoint.Win.DropDownOptions.ButtonAndText FpSpread1.Sheets(0).Cells(0,0).CellType = cmbocell
System.Object
System.ValueType
System.Enum
FarPoint.Win.DropDownOptions