PowerTools SPREAD for Windows Forms 8.0J
AcceptsArrowKeys プロパティ (ComboBoxCellType)


コンボボックスコントロールによる矢印キーの処理方法を取得または設定します。
構文
'Declaration
 
Public Property AcceptsArrowKeys As AcceptsArrowKeys
'使用法
 
Dim instance As ComboBoxCellType
Dim value As AcceptsArrowKeys
 
instance.AcceptsArrowKeys = value
 
value = instance.AcceptsArrowKeys
public AcceptsArrowKeys AcceptsArrowKeys {get; set;}

プロパティ値

矢印キーを処理するかどうかを決定するAcceptsArrowKeys設定
解説

このプロパティは、リストではなく編集部分に適用されます。これが適用されるのは、コンボボックスが編集可能で、なおかつ編集部分にフォーカスがある場合のみです。

次のサンプルコードは、1月から6月までを含むコンボボックスを最初のシートのセルに設定し、表示部分のサイズを指定します。
FarPoint.Win.Spread.CellType.ComboBoxCellType cmbocell = new FarPoint.Win.Spread.CellType.ComboBoxCellType();
cmbocell.Items = (new String[] {"January", "February", "March", "April", "May", "June"});
cmbocell.AcceptsArrowKeys = FarPoint.Win.SuperEdit.AcceptsArrowKeys.AllArrows;
cmbocell.AutoSearch = FarPoint.Win.AutoSearch.SingleCharacter;
cmbocell.Editable = true;
cmbocell.ListAlignment = FarPoint.Win.ListAlignment.Left;
cmbocell.ListOffset = 20;
cmbocell.ListWidth = 0;
cmbocell.MaxDrop = 4;
fpSpread1.Sheets[1].Cells[2,2].CellType = cmbocell;
Dim cmbocell As New FarPoint.Win.Spread.CellType.ComboBoxCellType()
cmbocell.Items = (new String() {"January", "February", "March", "April", "May", "June"})
cmbocell.AcceptsArrowKeys = FarPoint.Win.SuperEdit.AcceptsArrowKeys.AllArrows
cmbocell.AutoSearch = FarPoint.Win.AutoSearch.SingleCharacter
cmbocell.Editable = True
cmbocell.ListAlignment = FarPoint.Win.ListAlignment.Left
cmbocell.ListOffset = 20
cmbocell.ListWidth = 0
cmbocell.MaxDrop = 4
fpSpread1.Sheets(1).Cells(2,2).CellType = cmbocell
参照

ComboBoxCellType クラス
ComboBoxCellType メンバ

 

 


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